|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IEncryptionEngine
A simple interface for encrypting process configuration data.
| Method Summary | |
|---|---|
byte[] |
decrypt(byte[] cypherBytes)
Decrypts the supplied bytes using an implementation-specific strategy. |
char[] |
decrypt(char[] cypherText)
Decrypts the supplied text using an implementation-specific strategy. |
byte[] |
encrypt(byte[] plainBytes)
Encrypts the supplied bytes using an implementation-specific strategy. |
char[] |
encrypt(char[] plainText)
Encrypts the supplied text using an implementation-specific strategy. |
| Method Detail |
|---|
byte[] encrypt(byte[] plainBytes)
throws java.lang.NullPointerException
plainBytes - The bytes to be encrypted.
java.lang.NullPointerException - If plainBytes is
null.
byte[] decrypt(byte[] cypherBytes)
throws java.lang.NullPointerException
cypherBytes - The bytes to be decrypted.
java.lang.NullPointerException - If cypherBytes is
null.
char[] encrypt(char[] plainText)
throws java.lang.NullPointerException
plainText - The text to be encrypted.
java.lang.NullPointerException - If plainText is
null.
char[] decrypt(char[] cypherText)
throws java.lang.NullPointerException
cypherText - The text to be decrypted.
java.lang.NullPointerException - If cypherText is
null.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||